home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / bovinated-logo.scm < prev    next >
Text File  |  2009-12-15  |  5KB  |  141 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; This program is free software; you can redistribute it and/or modify
  5. ; it under the terms of the GNU General Public License as published by
  6. ; the Free Software Foundation; either version 2 of the License, or
  7. ; (at your option) any later version.
  8. ;
  9. ; This program is distributed in the hope that it will be useful,
  10. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ; GNU General Public License for more details.
  13. ;
  14. ; You should have received a copy of the GNU General Public License
  15. ; along with this program; if not, write to the Free Software
  16. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. ;
  18. ;  Bovinated Logos v0.1 04/08/98
  19. ;  by Brian McFee <keebler@wco.com>
  20. ;  Creates Cow-spotted logs.. what else?
  21.  
  22. (define (apply-bovinated-logo-effect img
  23.                                      logo-layer
  24.                                      spots-x
  25.                                      spots-y
  26.                                      bg-color)
  27.   (let* (
  28.         (width (car (gimp-drawable-width logo-layer)))
  29.         (height (car (gimp-drawable-height logo-layer)))
  30.         (bg-layer (car (gimp-layer-new img
  31.                                        width height RGBA-IMAGE
  32.                                        "Background" 100 NORMAL-MODE)))
  33.         (blur-layer (car (gimp-layer-new img
  34.                                          width height RGBA-IMAGE
  35.                                          "Blur" 100 NORMAL-MODE)))
  36.         )
  37.  
  38.     (gimp-context-push)
  39.  
  40.     (script-fu-util-image-resize-from-layer img logo-layer)
  41.     (script-fu-util-image-add-layers img blur-layer bg-layer)
  42.  
  43.     (gimp-selection-all img)
  44.     (gimp-context-set-background bg-color)
  45.     (gimp-edit-fill bg-layer BACKGROUND-FILL)
  46.     (gimp-selection-none img)
  47.  
  48.     (gimp-layer-set-lock-alpha blur-layer TRUE)
  49.     (gimp-context-set-background '(255 255 255))
  50.     (gimp-selection-all img)
  51.     (gimp-edit-fill blur-layer BACKGROUND-FILL)
  52.     (gimp-edit-clear blur-layer)
  53.     (gimp-context-set-background '(191 191 191))
  54.     (gimp-selection-none img)
  55.     (gimp-layer-set-lock-alpha blur-layer FALSE)
  56.     (gimp-selection-layer-alpha logo-layer)
  57.     (gimp-edit-fill blur-layer BACKGROUND-FILL)
  58.     (plug-in-gauss-rle RUN-NONINTERACTIVE img blur-layer 5.0 1 1)
  59.     (gimp-selection-none img)
  60.     (gimp-layer-set-lock-alpha logo-layer TRUE)
  61.     (gimp-selection-all img)
  62.     (plug-in-solid-noise RUN-NONINTERACTIVE img logo-layer 0 0 23 1 spots-x spots-y)
  63.     (gimp-brightness-contrast logo-layer 0 127)
  64.     (gimp-selection-none img)
  65.     (gimp-layer-set-lock-alpha logo-layer FALSE)
  66.     (plug-in-bump-map RUN-NONINTERACTIVE img logo-layer blur-layer
  67.                       135 50 10 0 0 0 30 TRUE FALSE 0)
  68.     (gimp-layer-set-offsets blur-layer 5 5)
  69.     (gimp-invert blur-layer)
  70.     (gimp-layer-set-opacity blur-layer 50.0)
  71.     (gimp-image-set-active-layer img logo-layer)
  72.  
  73.     (gimp-context-pop)
  74.   )
  75. )
  76.  
  77. (define (script-fu-bovinated-logo-alpha img
  78.                                         logo-layer
  79.                                         spots-x
  80.                                         spots-y
  81.                                         bg-color)
  82.   (begin
  83.     (gimp-image-undo-group-start img)
  84.     (apply-bovinated-logo-effect img logo-layer spots-x spots-y bg-color)
  85.     (gimp-image-undo-group-end img)
  86.     (gimp-displays-flush)
  87.   )
  88. )
  89.  
  90. (script-fu-register "script-fu-bovinated-logo-alpha"
  91.   _"Bo_vination..."
  92.   _"Add 'cow spots' to the selected region (or alpha)"
  93.   "Brian McFee <keebler@wco.com>"
  94.   "Brian McFee"
  95.   "April 1998"
  96.   "RGBA"
  97.   SF-IMAGE      "Image"             0
  98.   SF-DRAWABLE   "Drawable"          0
  99.   SF-ADJUSTMENT _"Spots density X"  '(16 1 16 1 10 0 1)
  100.   SF-ADJUSTMENT _"Spots density Y"  '(4 1 16 1 10 0 1)
  101.   SF-COLOR      _"Background Color" "white"
  102. )
  103.  
  104. (script-fu-menu-register "script-fu-bovinated-logo-alpha"
  105.                          "<Image>/Filters/Alpha to Logo")
  106.  
  107.  
  108. (define (script-fu-bovinated-logo text
  109.                                   size
  110.                                   font
  111.                                   spots-x
  112.                                   spots-y
  113.                                   bg-color)
  114.   (let* ((img (car (gimp-image-new 256 256 RGB)))
  115.          (border (/ size 4))
  116.          (text-layer (car (gimp-text-fontname img -1 0 0 text border TRUE size PIXELS font))))
  117.     (gimp-image-undo-disable img)
  118.     (apply-bovinated-logo-effect img text-layer spots-x spots-y bg-color)
  119.     (gimp-image-undo-enable img)
  120.     (gimp-display-new img)
  121.   )
  122. )
  123.  
  124. (script-fu-register "script-fu-bovinated-logo"
  125.   _"Bo_vination..."
  126.   _"Create a logo with text in the style of 'cow spots'"
  127.   "Brian McFee <keebler@wco.com>"
  128.   "Brian McFee"
  129.   "April 1998"
  130.   ""
  131.   SF-STRING     _"Text"               "Fear the Cow"
  132.   SF-ADJUSTMENT _"Font size (pixels)" '(80 2 1000 1 10 0 1)
  133.   SF-FONT       _"Font"               "RoostHeavy"
  134.   SF-ADJUSTMENT _"Spots density X"    '(16 1 16 1 10 0 1)
  135.   SF-ADJUSTMENT _"Spots density Y"    '(4 1 16 1 10 0 1)
  136.   SF-COLOR      _"Background color"   "white"
  137. )
  138.  
  139. (script-fu-menu-register "script-fu-bovinated-logo"
  140.                          "<Image>/File/Create/Logos")
  141.